home *** CD-ROM | disk | FTP | other *** search
/ Electronics Boutique Catalog 1996 Spring / 1996 Electronics Boutique Spring CD-ROM (USA).bin / eb / demos / muppets.dir / 00057.ls < prev    next >
Encoding:
Text File  |  1995-12-13  |  453 b   |  23 lines

  1. on exitFrame
  2.   set the visible of sprite 7 to 0
  3.   set the visible of sprite 8 to 0
  4.   set the visible of sprite 9 to 0
  5.   if rollOver(3) then
  6.     set the visible of sprite 7 to 1
  7.     updateStage()
  8.     exit
  9.   else
  10.     if rollOver(4) then
  11.       set the visible of sprite 8 to 1
  12.       updateStage()
  13.       exit
  14.     else
  15.       if rollOver(5) then
  16.         set the visible of sprite 9 to 1
  17.         updateStage()
  18.         exit
  19.       end if
  20.     end if
  21.   end if
  22. end
  23.